/*---------------------------------------------------------------

        Template Name: Bakery Bucket | Delicious Breads, Cakes, and Pastries Freshly Baked Daily
        Description: Baker One Page Website Template
        Author: Lucid Themeslab
        Author URL: https://www.templatemonster.com/store/lucid_themeslab/
        Version: 2.0.0
    -----------------------------------------------------------------

        CSS INDEX
        ==================

        01.   Basic Style
        02.   Preloader Style
        03.   Theme Switcher
        03.   Header Style 
        03.   Banner & Nav Style
        05,   About Section Style
        06.   Product Section Style
        07.   Best Seller Section Background Style
        08.   Gallery Section Style
        09.   Counter Section Background Style
        10.   News and Blog Section Style
        11.   Testimonials Section Style
        12.   Team Section Style
        13.   Pricing Style
        14.   FAQ Section Style
        15.   Contact Section Background Style
        16.   Instagram Feed Section Style
        17.   Newsletter Section Style
        18.   Back to top Style
     
  
----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==================
   Basic Style 
================== */

[data-bakerytheme="lightmode"] {
  --body-color: #FFFFFF;
  --primary-color: #ffffff;
  --primary-color-overlay: 233, 152, 21;
  --primary-hover-color: #ffffff;
  --secondary-color: #422e0d;
  --secondary-overlay: 51, 33, 0;
  --alt-color: #fffaf2;
  --white-color: #ffffff;
  --light-color:#fff1db;
  --form-color: #FFEDCD;
  --card-color: #ffffff;
  --danger-color: #ff5555;
  --warning-color: #FF9F01;
  --card-shadow: rgb(234, 166, 54, 0.5) 1px 8px 9px 0px;
  --box-size: 300px;
  --border-thickness: 5%; 
  --wave-size: 60px;
  --wave-position: bottom;
  --wave-transparent: 0, 0, 0; 
  --wave-color: #ffffff;      
  --wave-mask-position: 80%;
  --wave-mask-size: 100px 100%;
  --dark-rgb :0, 0, 0;

  /* text-colors */
  --primary-text: #ffffff;
  --heading-text: #ffffff;
  --para-text: #646161;
  --white-text: #ffffff;
  --form-text: #332104;
  --danger-text: #ff5555;
  
  /* font family */
  --primaryfont: "Montserrat", sans-serif;
  --secondaryfont: "Lobster", sans-serif;
}

[data-bakerytheme="darkmode-one"] {
  --body-color: #0A0D11;
  --primary-color: #EAA636;
  --primary-color-overlay: 233, 152, 21;
  --primary-hover-color: #b9770c;
  --secondary-color: #050505;
  --secondary-overlay: 5, 5, 5;
  --alt-color: #171B1E;
  --white-color: #ffffff;
  --light-color:#46494a;
  --form-color: #252A2F;
  --card-color: #272E32;
  --danger-color: #ff5555;
  --warning-color: #FF9F01;
  --card-shadow: rgb(7, 9, 11,0.5) 1px 8px 9px 0px;
  --wave-size: 60px;
  --wave-position: bottom;
  --wave-transparent: #0a0d1100;
  --wave-color: #0A0D11;
  --wave-mask-position: 80%;
  --wave-mask-size: 100px 100%;

  /* text-colors */
  --primary-text: #EAA636;
  --heading-text: #ffffff;
  --para-text: #eeeeee;
  --white-text: #ffffff;
  --form-text: #E1E1E1;
  --danger-text: #ff5555;

  /* font family */
  --primaryfont: "Montserrat", sans-serif;
  --secondaryfont: "Lobster", sans-serif;
}

[data-bakerytheme="darkmode-two"] {
  --body-color: #281903;
  --primary-color: #f7ddb6;
  --primary-color-overlay: 233, 152, 21;
  --primary-hover-color: #b9770c;
  --secondary-color: #422e0d;
  --secondary-overlay: 66, 46, 13;
  --alt-color: #3b2709;
  --white-color: #ffffff;
  --light-color:#5c411c;
  --form-color: #58390C;
  --card-color: #50330a;
  --danger-color: #ff5555;
  --warning-color: #FF9F01;
  --card-shadow:  rgb(74, 45, 9, 0.5) 1px 8px 9px 0px;
  --wave-size: 60px;
  --wave-position: bottom;
  --wave-transparent: #281903;
  --wave-color: #281903;
  --wave-mask-position: 80%;
  --wave-mask-size: 100px 100%;

  /* text-colors */
  --primary-text: #f7ddb6;
  --heading-text: #ffffff;
  --para-text: #eeeeee;
  --white-text: #ffffff;
  --form-text: #E1E1E1;
  --danger-text: #ff5555;

  /* font family */
  --primaryfont: "Montserrat", sans-serif;
  --secondaryfont: "Lobster", sans-serif;
}

/* Background-Color*/

.body-color {
  background-color: var(--body-color) !important;
}

.primary-color {
  background-color: var(--primary-color) !important;
}

.primary-hover-color {
  background-color: var(--primary-hover-color) !important;
}

.secondary-color {
  background-color: var(--secondary-color) !important;
}

.secondary-overlay {
  background-color: var(--secondary-overlay) !important;
}

.alt-color {
  background-color: var(--alt-color) !important;
}

.white-color {
  background-color: var(--white-color) !important;
}

.form-color {
  background-color: var(--form-color) !important;
}

.card-color {
  background-color: var(--card-color) !important;
}

.danger-color {
  background-color: var(--danger-color) !important;
}

.warning-color {
  background-color: var(--warning-color) !important;
}

.card-shadow {
  box-shadow: var(--card-shadow)
}

/* Text-Color*/

.primary-font {
  font-family: var(--primaryfont) !important;
}

.secondary-font {
  font-family: var(--secondaryfont) !important;
}

.primary-text {
  color: var(--primary-text);
}

.heading-text {
  color: var(--heading-text);
}

.primary-fill {
  color: var(--primary-color);
}

.rating-fill {
  color: var(--warning-color);
}

.para-text {
  color: var(--para-text);
}

.white-text {
  color: var(--white-text);
}

.form-text {
  color: var(--form-text);
}

.danger-text {
  color: var(--danger-text);
}

/* Button Style */

.primary-btn {
  background-color: var(--primary-color) !important;
  color: var(--white-text) !important;
  padding: 10px 20px;
  border: 1px solid var(--primary-color) !important;
  font-size: 18px;
}

.primary-btn:hover {
  background-color: var(--primary-hover-color) !important;
  color: var(--white-text) !important;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

/* ===============
  Basic Styles
====================*/

* {
  box-sizing: border-box;
  font-family: var(--primaryfont) !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn-close:not([data-bs-dismiss="alert"]) {
  background: unset;
}

::selection {
  background: var(--primary-color); 
  color: var(--white-color); 
}

/* ==================
  Preloader Style
================== */

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--alt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.loader img{
  width: 80px;
  height: 80px;
}

.loader img {
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeOut {
  100% { opacity: 0; visibility: hidden; }
}

@media (max-width: 991px) {
  .remove-w-75 {
      width: 80% !important;
  }
}

@media (min-width: 992px) {
  .remove-w-75 {
      width: 65% !important;
  }
}

/* ==================
  Theme Switcher
================== */

.theme-switcher {
  top: 40px;
  left: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  background-color: var(--secondary-color);
  padding: 10px;
}
.theme-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: var(--white-text);
}
.pallete-box-main {
  position: fixed;
  background-color: #ffff;
  top: 50%;
  left: -205px;
  z-index: 2;
  transition: left 0.6s ease-in-out;
}
.pallete-box-main.active {
  left: 0px !important;
}
.theme-btn:hover {
  transform: scale(1.15);
  background-color: var(--primary-color);
  color: var(--white-text) !important;
} 
.right {
  content: 'f105';
}
.left {
  content: 'f104';
}
.error {
  color: var(--danger-text) !important;
  background-color: var(--secondary-color);
  font-weight: 500;
  padding: 8px;
}

::placeholder, .form-select {
  color: var(--form-text)!important;
}

.form-control:focus, .form-select:focus {
  color: var(--form-text)!important;
  border-color: var(--primary-border);
  outline: 0;
  box-shadow: none;
}

.form-control{
  color: var(--form-text)!important;
  background-color: var(--form-color);
  outline: 0;
  box-shadow: none;
}

/*================================================
  About Section Style
=================================================*/
#about{
  position: relative;
}
.abt-gridwrapper {
  max-width: 550px;
}

.abt-gridwrapper div {
  width: 100%;
  height: 100%;
  position: relative;
}

.abt-gridwrapper>div img {
  width: 100%;
  height: 100%;
  max-width: 280px;
  object-fit: cover;
  border-radius: 0px;
}

.abt-gridwrapper .first_img {
  border-top: 12px solid var(--primary-color);
}

.abt-gridwrapper .second_img {
  border-top: 12px solid var(--primary-color);
}

.abt-gridwrapper .third_img {
  border-bottom: 12px solid var(--primary-color);
}

.abt-gridwrapper .fourth_img {
  border-bottom: 12px solid var(--primary-color);
}

.abt-gridwrapper {
  display: grid;
  grid-gap: 0.5em;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 120px;
  grid-auto-flow: dense;
}

.abt-gridwrapper .wide {
  grid-column: span 2;
}

.abt-gridwrapper .tall {
  grid-row: span 2;
}

.abt-gridwrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.first-img {
  position: absolute;
  top: 0%;
  left: calc(50% - 200px);
  width: 400px;
}

.second-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
}

@media(max-width:1199px) {
  .abtimg-outer {
    min-height: 400px;
    margin-bottom: 100px;
  }

  .first-img {
    left: calc(50% - 175px);
    max-width: 350px;
  }

  .second-img {
    max-width: 250px;
    top: 60%;
    left: calc(70% - 150px);
  }
}
.certi_img img{
  width: 75px;
  height: 75px;
  object-fit: contain;
}

/*================================================
  Product Section Style
=================================================*/

.bakery_img {
  width: 100px;
  height: 100px;
}

/*================================================
  Best Seller Section Background Style
=================================================*/

.best_seller_bg {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.7), rgba(var(--secondary-overlay), 0.4)),
    url(../../assets/backround_img/Best-Seller-Section.webp) no-repeat;
   background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/*================================================
  Gallery Section Style
=================================================*/

#demo {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.thumb {
  margin-bottom: 30px;
}

.page-top {
  margin-top: 85px;
}

img.zoom {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  -webkit-transition: all .3s ease-in-out;
}

.transition {
  -webkit-transform: scale(1.05);
}

.fancybox-overlay{
  background-color:rgba(0, 0, 0, 0.859);
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: unset;
}

.fancybox-next span::after {
  content: '\f061';
  font-family: 'FontAwesome';
  font-size: 14px;
  color: white;
  background-color: rgba(var(--dark-rgb), 0.7);
  border: 1px solid white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancybox-prev span::after {
  content: '\f060';
  font-family: 'FontAwesome';
  font-size: 14px;
  color: white;
  background-color: rgba(var(--dark-rgb), 0.7);
  border: 1px solid white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancybox-close::after{
  content: '\f00d';
  font-family: 'FontAwesome';
  font-size: 20px;
  color: white;
  background-color: rgba(var(--dark-rgb), 1);
  border: 1px solid white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header {
  border-bottom: none;
}


@media (max-width: 420px) {
  .thumb {
    width: 50%;
    margin-bottom: 15px; 
  }

  img.zoom {
    width: 100%;
    height: 140px; 
    object-fit: cover;
    border-radius: 5px;
  }
}

@media (max-width: 576px) {
  .thumb {
    margin-bottom: 20px; 
  }

  img.zoom {
    width: 100%;
    max-height: 180px; 
    object-fit: cover;
    border-radius: 5px;
  }
}


@media (max-width: 360px) {
  .thumb {
    margin-bottom: 15px;
  }

  img.zoom {
    width: 100%;
    max-height: 150px; 
    object-fit: cover;
    border-radius: 5px;
  }
}


/*================================================
  Counter Section Background Style
=================================================*/

.counter_bg {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.7), rgba(var(--secondary-overlay), 0.4)),
    url(../../assets/backround_img/Counter-Section.webp) no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/*================================================
  News and Blog Section Style
=================================================*/

.blog-post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post .blog-main-img a.blog-img {
  display: block;
  position: relative;
}

.blog-post .blog-post-content .date-time {
  background-color: var(--primary-color);
  padding: 15px 30px;
  position: absolute;
  top: -22px;
}

.blog-post .blog-post-content {
  width: 90%;
  padding: 50px 30px 30px;
  margin: -60px auto 0;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--card-color);
  border: 1px solid var(--primary-color);
}

/*================================================
  Testimonials Section Style
=================================================*/

.testi_img img {
  width: 60px;
  height: 60px;
}

#testimonial-main .owl-nav{
  display: flex !important;
  justify-content: center !important;
}

#testimonial-main .owl-theme .owl-prev, #testimonial-main .owl-theme .owl-next{
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 19px !important;
  background: var(--primary-color) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
}

#testimonial-main .owl-theme .owl-prev:hover, #testimonial-main .owl-theme .owl-next:hover{
  background: var(--primary-hover-color);
  color: #FFF;
  text-decoration: none;
}

#testimonial-main .owl-item.center .test_content{
  background-color: var(--primary-color) !important;
}

#testimonial-main .owl-item.center .test_content p, #testimonial-main .owl-item.center .test_content h5{
  color: var(--white-text) !important;
}

/*================================================
  Team Section Style
=================================================*/

.team .team-item {
  position: relative;
  overflow: hidden;
  background: var(--card-color);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}

.team .team-item .team-inner {
  transition: 0.5s;
}
.team .team-item:hover .team-inner {
  box-shadow: var(--card-shadow)
}

.team .team-item .team-inner .team-img {
  position: relative;
  z-index: 2;
}

.team .team-item .team-inner .team-img::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: linear-gradient(0deg, rgba(var(--primary-color-overlay), 0.2), rgba(var(--primary-color-overlay), 0.3));
  transition: 0.5s;
  z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
  height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
  position: absolute;
  left: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
  opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
  position: absolute;
  bottom: 0;
  left: -100%;
  border-bottom-left-radius: 0 !important; 
  border-top-left-radius: 0 !important;
  display: inline-flex;
  background: var(--secondary-color);
  transition: 0.5s;
  z-index: 4;
  gap: 4px;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
  left: -25px; 
}

/* ==================
  Pricing Style
================== */

.pricing-card {
  background: var(--card-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: left;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.price {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color)
}
.price small {
  font-size: 20px;
  color: var(--para-text);
}
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--para-text);
}
.features-list li::before {
  content: "✔";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 8px;
}
.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.btn-primary:hover {
  background-color: var(--primary-hover-color) !important;
}
.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: #fff;
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 20px;
  font-weight: bold;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: bold;
}
.pricing-card hr {
  margin: 15px 0;
  border: 0;
  height: 1px;
  background: #ddd;
}

/* ==================
  FAQ Style
================== */

.faq-image {
  max-height: 400px; 
  object-fit: cover; 
}

@media (max-width: 768px) {
  .faq-image {
      max-height: 250px;
      width: 90%; 
      display: block;
      margin: 0 auto; 
  }
}

.faq-image {
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.faq-image:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.faq-content .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-content .accordion-button:not(.collapsed) {
  background-color: var(--alt-color);
  color: var(--heading-text);
}

.faq-content .accordion-body {
  background: var(--alt-color);
  color: var(--heading-text);
  padding: 20px;
  border-radius: 8px;
}

.faq-content .accordion-button {
  background-color: var(--card-color);
  color: var(--white-color);
  transition: color 0.3s ease-in-out;
}


.faq-content .accordion-button:hover {
  color: var(--primary-color);
}

.faq-content .accordion-button:not(.collapsed)::after {
  content: '\f078';
  font-family: 'FontAwesome';
  background-image: unset;
  transform: var(--bs-accordion-btn-icon-transform);
}

.faq-content .accordion-button::after {
  content: '\f077';
  font-family: 'FontAwesome';
  background-image: unset;
  transform: var(--bs-accordion-btn-icon-transform);
}

.faq-content .accordion-button {
  background-color: var(--card-color);
  color: var(--heading-text);
}

.faq-content .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: none;
}

.faq-content .accordion-button:focus {
  border-color: unset;
  outline: 0;
  box-shadow: none;
}

.faq-content .accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
  color: #0e1126;
}

.faq-content .accordion-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: var(--alt-color);
  border: 1px solid #f5d490;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-content .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-content .accordion-body {
  background: var(--alt-color);
  color: var(--heading-text);
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.faq-content .accordion-button {
  background-color: var(--card-color);
  color: var(--heading-text);
  font-weight: bold;
  border: none;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.faq-content .accordion-button:hover {
  color: var(--primary-color);
}

.faq-content .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: none;
}

.faq-content .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.faq-content .accordion-button::after {
  content: '\f077'; 
  font-family: 'FontAwesome';
  transition: transform 0.3s ease-in-out;
  background-image: unset;
  color: var(--heading-text);
}

.faq-content .accordion-button:not(.collapsed)::after {
  content: '\f078'; 
  transform: rotate(180deg);
  color: var(--white-color);
  background-image: unset;
}


/*================================================
  Contact Section Background Style
=================================================*/

.contact_bg {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.7), rgba(var(--secondary-overlay), 0.4)),
    url(../../assets/backround_img/Contact-Section.webp) no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter_bg {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 0.7), rgba(var(--secondary-overlay), 0.4)),
    url(../../assets/backround_img/Newsletter.webp) no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer_bg {
  background: linear-gradient(0deg, rgba(var(--secondary-overlay), 1), rgba(var(--secondary-overlay), 0.4)),
    url(../../assets/backround_img/Footer-Section.webp) no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-gallery img{
  height: 70px;
}

/*================================================
  Instagram Feed Section Style
=================================================*/

.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.img-overlay img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.img-overlay:hover img {
  transform: scale(1.1);
}

.img-overlay .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--secondary-overlay), 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.img-overlay:hover .overlay {
  opacity: 1;
}

.img-overlay .overlay .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==================
  Newsletter Section Style
================== */

#newsletter .error:not(.form-control) {
  position: absolute;
  top: 100%;
}

/* ==================
  Back to top Style
================== */

#backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50%;
  border: 2px dotted var(--white-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backtotop:hover {
  cursor: pointer;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

.bakery {
  transition: background 0.4s ease-in-out;
}

.bakery:hover {
  background: var(--primary-color)!important;
  transition: background 0.4s ease-in-out, transform 0.3s ease-in-out;
}

.product-content {
  transition: background 0.4s ease-in-out, transform 0.3s ease-in-out;
}

.bakery:hover .product-content {
  background: var(--light-color)!important;
  transform: scale(1.05);
}

.bakery-product {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.bakery-product:hover {
  background: var(--primary-color)!important;
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.bakery_img img {
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.bakery-product:hover .bakery_img img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.bakery-product:hover .heading-text,
.bakery-product:hover .para-text {
  color: var(--white-color) !important;
}

@media (max-width: 1200px) {
  .offcanvas-body {
      background-color: var(--body-color) !important;
  }
}

@media (min-width: 1200px) {
  .offcanvas-body {
      background-color: transparent !important;
  }
}

@media (max-width: 1199px) {
  .phone-text,
  .phone-text a {
    color: var(--heading-text) !important;
  }
}

@media (min-width: 1200px) {
  .phone-text,
  .phone-text a {
    color: var(--white-text) !important;
  }
}